home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Presentations / Presentations ’96 / Sessions ’96 / ODF- Easy OpenDoc / MacHack(2) / Sources / Menus.fr < prev    next >
Encoding:
Text File  |  1996-06-17  |  763 b   |  40 lines  |  [TEXT/CWIE]

  1. //    File:        Menus.fr
  2. //
  3. //    Contains:    Resources for ODFContainer
  4. //
  5. //    Written by:    Mary Boetcher
  6. //
  7. //    Copyright:    © 1993-1996 by Apple Computer, Inc., all rights reserved.
  8.  
  9. #ifndef FWRESFIL_K
  10. #include "FWResFil.k"
  11. #endif
  12.  
  13. #ifndef DEFINES_K
  14. #include "Defines.k"
  15. #endif
  16.  
  17. #ifndef FWMENUS_FR
  18. #include "FWMenus.fr"
  19. #endif
  20.  
  21. //----------------------------------------------------------------------------
  22. //    Menus
  23. //----------------------------------------------------------------------------
  24.  
  25. resource FW_RMenuBar(kMenuBar)
  26. {
  27.     {
  28.         FW_RPullDownMenu
  29.         (
  30.             "MacHack"
  31.             {
  32.                 FW_RTextItem(cRectangle, FW_kNoKeyEquivalent, "Rectangle"),
  33.                 FW_RTextItem(cOval, FW_kNoKeyEquivalent, "Oval"),
  34.                 FW_RTextItem(cRoundRect, FW_kNoKeyEquivalent, "Round Rectangle")
  35.             }
  36.         )
  37.     }
  38. };
  39.  
  40.